e263c64072972f8e5069c391c1319e3dafaf487f,core/src/main/java/org/elasticsearch/action/admin/cluster/node/stats/NodeStats.java,NodeStats,writeTo,#StreamOutput#,234
Before Change
out.writeOptionalWriteable(process);
out.writeOptionalWriteable(jvm);
out.writeOptionalWriteable(threadPool);
if (fs == null) {
out.writeBoolean(false);
} else {
out.writeBoolean(true);
fs.writeTo(out);
}
if (transport == null) {
out.writeBoolean(false);
} else {
out.writeBoolean(true);
transport.writeTo(out);
}
if (http == null) {
out.writeBoolean(false);
After Change
out.writeOptionalWriteable(process);
out.writeOptionalWriteable(jvm);
out.writeOptionalWriteable(threadPool);
out.writeOptionalWriteable(fs);
out.writeOptionalWriteable(transport);
if (http == null) {
out.writeBoolean(false);
} else {